VERSION 5.00 Begin VB.Form frmwon BackColor = &H00000000& Caption = "X is the winner !!!" ClientHeight = 1950 ClientLeft = 6120 ClientTop = 4005 ClientWidth = 3870 LinkTopic = "Form1" ScaleHeight = 1950 ScaleWidth = 3870 Begin VB.CommandButton Command2 Caption = "Give up!!!" Height = 495 Left = 2160 TabIndex = 2 Top = 1200 Width = 1335 End Begin VB.CommandButton Command1 Caption = "Play again!!!" Height = 495 Left = 360 TabIndex = 1 Top = 1200 Width = 1215 End Begin VB.Label Label1 BackStyle = 0 'Transparent Caption = "X is the winner!!!" BeginProperty Font Name = "MS Sans Serif" Size = 13.5 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty ForeColor = &H00FF0000& Height = 495 Left = 720 TabIndex = 0 Top = 120 Width = 2415 End Attribute VB_Name = "frmwon" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Private Sub Command1_Click() frmMain.Text1.Text = "" frmMain.Text2.Text = "" frmMain.Text3.Text = "" frmMain.Text4.Text = "" frmMain.Text5.Text = "" frmMain.Text6.Text = "" frmMain.Text7.Text = "" frmMain.Text8.Text = "" frmMain.Text9.Text = "" frmwon.Hide End Sub Private Sub Command2_Click() End Sub